home *** CD-ROM | disk | FTP | other *** search
- /* MailBox-program for ModAns v 2.0 */
-
- options results
-
- address MODANS.0
-
- do forever
- 'waitconnect'
- if rc=5 then iterate
- 'sendtextfile Login.txt'
- 'send Would you like to leave a message? (y/N)'
- 'getstring 5'
- if upper(left(result,1))='Y' then do
- tid=time('N')
- parse var tid hour ':' min ':'
- 'send' '0a0a0d'x
- 'edittext' date('s') || '_' || hour || min || '.txt'
- 'send' '0a0a0d'x || 'Your text has been archived among the others on my hard disk.' '0a0d'x
- end
- 'sendtextfile Logout.txt'
- 'hangup'
- end
-